home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 37 / Mac Magazin and MacEasy Magazine CD - Issue 37.iso / Software / Entwickler / sonstige / Visual Balloons DR3 / Visual Balloons™ Headers & Libs / UVisualBalloons.hpp < prev   
Text File  |  1997-08-06  |  2KB  |  50 lines

  1. /*-----------------------------------------------------------------------------
  2.     UVisualBalloons.hpp
  3.  
  4.     Written by Andreas Pizsa.
  5.     Copyright (C) 1997 Andreas Pizsa.
  6.     All rights reserved.
  7. -----------------------------------------------------------------------------*/
  8.  
  9. #ifndef _H_UVisualBalloons
  10. #define _H_UVisualBalloons
  11.  
  12. /*-----------------------------------------------------------------------------
  13.     CLASS
  14. -----------------------------------------------------------------------------*/
  15. class UVisualBalloons
  16. {
  17.     /*-------------------------------------------------------------------------
  18.         METHODS ( CLASS )
  19.     -------------------------------------------------------------------------*/
  20.     public:
  21.         static void        Initialize (  );
  22.  
  23.         static Boolean    BalloonsAvailable (  );
  24.  
  25.     /*-------------------------------------------------------------------------
  26.         DATA MEMBERS ( CLASS )
  27.     -------------------------------------------------------------------------*/
  28.     private:
  29.         static Boolean    sBalloonsAvailable;
  30. };
  31.  
  32. /*-----------------------------------------------------------------------------
  33.     CLASS        :    UVisualBalloons
  34.     METHOD        :    
  35.     PURPOSE        :    
  36.     PARAMETERS    :    
  37.     RETURNS        :    
  38.     NOTES        :    
  39.     TODO        :    
  40.     HISTORY        :    Tue, 5 Aug 1997 - started
  41.     AUTHOR        :    Andreas Pizsa
  42.     COPYRIGHT    :    (C) 1997 Andreas Pizsa. All rights reserved.
  43. -----------------------------------------------------------------------------*/
  44. inline
  45. Boolean UVisualBalloons::BalloonsAvailable (  )
  46. {
  47.     return sBalloonsAvailable;
  48. }
  49.  
  50. #endif /* _H_VisualBalloonHelp */